home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 1 (Walnut Creek)
/
Aminet - June 1993 [Walnut Creek].iso
/
aminet
/
mus
/
play
/
oplay1231.lha
/
src
/
DMakefile
next >
Wrap
Makefile
|
1992-10-28
|
577b
|
38 lines
##
## Makefile for DICE
##
HDRS = oplay.h forms.h
SRCS = oplay.c read.c tmpnam.c gentab.c
OBJS = oplay.o read.o tmpnam.o ulawtab.o
DOCS = oplay.doc
all: $(OBJS) oplay clean
oplay:
dcc -r -o oplay $(OBJS) dlib:powerpackers.lib
oplay.o:
dcc -// -r -c -o oplay.o oplay.c
read.o:
dcc -// -r -c -o read.o read.c
tmpnam.o:
dcc -// -r -c -o tmpnam.o tmpnam.c
ulawtab.o: ulawtab.c
dcc -r -c -o ulawtab.o ulawtab.c
ulawtab.c: gentab
gentab >ulawtab.c
gentab:
dcc -o gentab gentab.c
bak:
copy DMakefile $(SRCS) $(HDRS) $(DOCS) src:oplay/
clean:
delete $(OBJS) gentab